home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Internet Magazine 2003 July
/
INTERNET105.ISO
/
pc
/
software
/
windows
/
building
/
homesite
/
snippets
/
sample snippets
/
close window (form).hss
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1998-10-11
|
336 b
|
19 lines
<!-- Start Close Window, enter in Head tag -->
<SCRIPT LANGUAGE="JavaScript">
<!--
function exit(url) {
if (window.name == "") {
top.location.href = url;
} else {
top.opener.top.location.href = url;
top.close();
}
}
//-->
</SCRIPT>
<!-- Start Close Window, enter in Head tag -->